home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / Orpheus v3.02 / README.TXT < prev    next >
Encoding:
Text File  |  1999-02-25  |  7.3 KB  |  155 lines

  1. ***********************************************************
  2.                  ORPHEUS 3 RELEASE NOTES
  3. ***********************************************************
  4.  
  5. This file contains last-minute information about Orpheus 3 and additional information that enhances the usability of Orpheus. We recommend you read this entire file before using Orpheus 3.
  6.  
  7. Unless otherwise noted, all materials provided in this version of Orpheus are copyright (C) 1995-1999 by TurboPower Software Company.
  8.  
  9.  
  10. TABLE OF CONTENTS
  11. *******************************************************
  12.   1. WHERE TO FIND INFORMATION
  13.   2. CONTACTING TURBOPOWER
  14.   3. EXAMPLE APPLICATIONS
  15.   4. THIRD-PARTY DATABASE ENGINES
  16.   5. KNOWN PROBLEMS
  17.   6. MANUAL ERRATA
  18.  
  19.  
  20. 1. WHERE TO FIND INFORMATION
  21. *******************************************************
  22. 1.1 Information Files
  23. ---------------------
  24. This file, README.TXT, contains release notes for Orpheus 3. See the file DEPLOY.HLP for information on redistributing Orpheus applications and packages. DEPLOY.HLP also contains additional licensing requirements for package distribution. See the license agreement at the front of the user manual for information on licensing allowances and limitations for Orpheus 3.
  25.  
  26. 1.2 Online Resources
  27. --------------------
  28. You can get information from any of these online sources:
  29.  
  30. 1.2.1 World Wide Web
  31. --------------------
  32. Check TruboPower's Web site regularly. The TurboPower staff will post white papers, competitive analyses, answers to frequently asked questions, sample applications, updated software, and information about new and existing products. You may want to check these URLs in particular:
  33.  
  34.   http://www.turbopower.com/
  35.     (Main TurboPower Web site)
  36.   http://www.turbopower.com/orpheus/
  37.     (Orpheus product information)
  38.  
  39. 1.2.2 Newsgroups
  40. ----------------
  41. TurboPower sponsors a variety of newsgroups where users can exchange information about TurboPower development tools and their use. For a complete list and information on connecting to the TurboPower news server, see the page at the URL:
  42.  
  43.     http://www.turbopower.com/support/
  44.  
  45.  
  46. 2. CONTACTING TURBOPOWER
  47. *******************************************************
  48. TurboPower Software Company
  49. P.O. Box 49009
  50. Colorado Springs, CO 80949-9009
  51. www.turbopower.com
  52.  
  53.  
  54. 3. EXAMPLE APPLICATIONS
  55. *******************************************************
  56. See the EXAMPLES.HLP file for descriptions of the example projects in the Orpheus\Examples directory tree.
  57.  
  58.  
  59. 4. THIRD-PARTY DATABASE ENGINES
  60. *******************************************************
  61. With this version of Orpheus certain data-aware controls have been modified to work with any database engine, not just the BDE. See DBHELPER.HLP for additional information.
  62.  
  63.  
  64. 5. KNOWN PROBLEMS
  65. *******************************************************
  66. Manually installing help using the Help|Customize menu item will not work using early versions of Delphi 4. Copying the Orpheus help files to the Delphi Help directory prior to installing or upgrading to the latest maintenance release of Delphi 4 solves the problem.
  67.  
  68.  
  69. 6. MANUAL ERRATA
  70. *******************************************************
  71. Add to the "Installing Integrated Help" section: To manually install Orpheus help into Delphi 4, use Delphi's Help|Customize menu item to start the OpenHelp program. With the Contents tab selected, select Edit|Add files from the menu and browse to and open the ORPH32.CNT file. (Note that the default file mask is *.toc -- you'll need to change it to *.cnt). Now, choose File|Save Project to save the changes and then exit OpenHelp. Context sensitive help should now be available from within the Delphi 4 IDE.
  72. ---<o>---
  73.  
  74. Added PreserveDate property to the TOvcDbTimeEdit. This property allows the date portion of the attached TDateTime field to be preserved when the time portion is left blank. The default is False.
  75. ---<o>---
  76.  
  77. Added PreserveTime property to the TOvcDbDateEdit. This property allows the time portion of the attached TDateTime field to be preserved when the date portion is left blank. The default is False.
  78. ---<o>---
  79.  
  80. Added a Store property to the TOvcMRUList component. Simply hook this property to one of the Orpheus store components (TOvcIniStore, TOvcRegistryStore, or TOvcVirtualStore) and the list will automatically be saved when your application exits and restored the next time it is started.
  81. ---<o>---
  82.  
  83. The Options property for the entry fields is missing from the printed manual. Here it is:
  84.  
  85. property TOVCBASEENTRYFIELD.Options : TOvcEntryFieldOptions
  86. TOvcEntryFieldOptions = set of TOvcEntryFieldOption;
  87. TOvcEntryFieldOption = (efoArrowIncDec, efoCaretToEnd, efoForceInsert,
  88.    efoForceOvertype, efoInputRequired, efoPasswordMode, efoReadOnly,
  89.    efoRightAlign, efoRightJustify, efoSoftValidation, efoStripLiterals,
  90.    efoTrimBlanks);
  91.  
  92. Options is a set of flags that determine the behavior of the entry field.
  93. The possible values for Options are:
  94.  
  95. efoArrowIncDec
  96. Determines whether the arrow keys can be used to increment and decrement displayed values.
  97.  
  98. efoCaretToEnd
  99. Determines where the caret is placed when the field receives focus.
  100.  
  101. efoForceInsert
  102. Forces the entry field to always be in insert mode.
  103.  
  104. efoForceOvertype
  105. Forces the entry field to always be in over type mode.
  106.  
  107. efoInputRequired
  108. Indicates whether the entry field must be filled.
  109.  
  110. efoPasswordMode
  111. Determines whether the character assigned to the PasswordChar property is displayed instead of the characters thats are entered.
  112.  
  113. efoReadOnly,
  114. Determines whether the entry field accepts user input.
  115.  
  116. efoRightAlign
  117. Determines whether the field contents are right aligned.
  118.  
  119. efoRightJustify
  120. Determines whether entered text is automatically right-justified after the field loses focus.
  121.  
  122. efoSoftValidation
  123. Determines whether errors detected by the validation routines are not reported when the user moves to another field.
  124.  
  125. efoStripLiterals,
  126. Indicates whether literal characters are removed from the edit string when the field contents are retrieved.
  127.  
  128. efoTrimBlanks
  129. Determines whether leading and trailing blanks are removed.
  130. ---<o>---
  131.  
  132. TOvcCheckList property changes:
  133. The Glyphs property is documented as representing a list of bitmaps, but was
  134. changed to represent a list of all images (glyphs) after the manual was
  135. printed.  Assign a TImageList to the Glyphs property to allow display of
  136. glyphs to the right of the checkbox.  An additional run-time property,
  137. GlyphIndex, was added to allow associating an image (from the TImageList)
  138. with each item in the check list.  Each position in the GlyphIndex array
  139. (indexed property) corresponds to an image index in the TImageList or is -1
  140. to indicate no image association.  These properties are only used if the
  141. ShowGlyphs property is true.  The GlyphMaskColor property has been deleted.
  142. ---<o>---
  143.  
  144. TOvcReportView Component
  145. The single parameter for the AddData, ChangeData, and RemoveData was changed from an open array of pointers to a single pointer.
  146. ---<o>---
  147.  
  148. TOvcAttachedbutton Component
  149. The manual defines the type of the Position property as TButtonPosition. It should be TOvcButtonPosition.
  150. ---<o>---
  151.  
  152.  
  153. *******************************************************
  154. Unless otherwise noted, all materials provided in this release are Copyright 1995-1999 by TurboPower Software Company.
  155. *********************** END ***************************